From 3e6e9a5bb844fbdfe7fd1bdc6e9d85e30419f299 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 9 Apr 2001 14:50:09 +0000 Subject: [PATCH] (nonobsolete_setwins): New macro. (finder-data): Use it instead of `setwins'. From: Dave Love . --- lisp/Makefile.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 3fb63dcc523..933673d94be 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -119,6 +119,12 @@ setwins=subdirs=`find $$wd -type d -print`; \ *) wins="$$wins $$file" ;; \ esac; \ done +nonobsolete_setwins=subdirs=`find $$wd -type d -print`; \ + for file in $$subdirs; do \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete ) ;; \ + *) wins="$$wins $$file" ;; \ + esac; \ + done doit: @@ -132,7 +138,7 @@ custom-deps: cus-load.el doit finder-inf.el: echo "(provide 'finder-inf)" >> $@ finder-data: finder-inf.el doit - wd=$(lisp); $(setwins); \ + wd=$(lisp); $(nonobsolete_setwins); \ echo Directories: $$wins; \ $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins -- 2.30.2